home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / apidev / ndr3.exe / READ.ME < prev    next >
Text File  |  1993-11-28  |  2KB  |  63 lines

  1. Network Developer's Resource README file for Vol.1/No.3 November-December '93
  2. -----------------------------------------------------------------------------
  3.  
  4. In this archive file:
  5.  
  6.         VOLSTAT.EXE, VOLSTAT.C : Get Volume Information, Revisited
  7.         SUBSCRIB.TXT : How to subscribe to the Network Developer's Resource
  8.         PRESSREL.TXT : Press Release about the NDR
  9.         Other files : Tim Farley's SHOWVER utility (.EXE & code) (see below)
  10.  
  11. SHOWVER
  12. -------
  13. Author:  Tim Farley
  14. Copyright 1993, Tim Farley, All Rights Reserved
  15.  
  16.  
  17. Purpose
  18. -------
  19. SHOWVER is a simple replacement for the Novell NVER command, which shows
  20. the versions of the various Novell TSR's loaded on a DOS workstation.
  21. It demonstrates both documented and undocumented ways to obtain this
  22. information.
  23.  
  24. To run, just type SHOWVER at a C: prompt.
  25.  
  26.  
  27. Source Code
  28. -----------
  29. Source code in C is provided.  It has been tested with both Microsoft
  30. and Borland C.  It should work with most DOS 16-bit C compilers, as long
  31. as they support inline ASM blocks and a few of the extensions supported
  32. by Microsoft C.  SHOWVER does not require any Novell SDK's to be
  33. compiled.
  34.  
  35. SHOWVER.C is the main program.  Each of the other C files is a
  36. self-contained module that gets the version for one component or set of
  37. components under NetWare.  These modules are:
  38.  
  39.     VERODI.C    Get LSL, MLID and protocol version numbers.
  40.     VERIPX.C    Get IPX and SPX version numbers.
  41.     VERNETX.C   Get the version number and type of the NetWare Shell.
  42.     VERVLM.C    Get the version info for the NetWare DOS Requestor.
  43.     VERLITE.C   Get version numbers for NetWare Lite.
  44.  
  45. See SHOWVER.C for a list of the useful external definitions exported by
  46. each of the modules.
  47.  
  48. An attempt has been made to make each of these modules self-contained
  49. and independent of memory model.  However, this has not been
  50. exhaustively tested.
  51.  
  52. To remake the program, you can use the supplied make files.
  53.  
  54. For Borland C:
  55.  
  56.     make /fmakefile.bc
  57.  
  58. For Microsoft C:
  59.  
  60.     nmake /F makefile.msc
  61.  
  62. *eof*
  63.